Skip to content

Instantly share code, notes, and snippets.

# ============================================
# Ghostty Terminal - Complete Configuration
# ============================================
# File: ~/.config/ghostty/config
# Reload: Cmd+Shift+, (macOS)
# View options: ghostty +show-config --default --docs
# --- Typography ---
font-family = "Maple Mono NF CN"
font-size = 14

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@Klerith
Klerith / Dockerfile
Last active August 20, 2026 15:20
Preparar imagen de Docker - Node App
# Install dependencies only when needed
FROM node:18-alpine3.15 AS deps
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
# Build the app with cache dependencies
FROM node:18-alpine3.15 AS builder
@tankxu
tankxu / VoHive-Deploy.md
Last active August 20, 2026 15:20
VoHive 仓库 / 固件 / 部署 / 升级 完全手册

VoHive 仓库 / 固件 / 部署 / 升级 完全手册

记录 vohive 的来源、二进制获取、在网心云 OES Plus(arm64)上的部署与升级方法。 整理时间:2026-07。当前 OES Plus 上运行 v1.5.15 原生 arm64/opt/vohive,systemd 服务,端口 7575)。


一、仓库现状(重要:官方已跑路)

  • 官方iniwex5/vohive(Go 源码)+ iniwex5/vohive-release(发布)
@ianviniciusmendonca-cloud
ianviniciusmendonca-cloud / Delta v4 player
Last active August 20, 2026 15:19
Aviso apenas testado em celular/ mobile
-- ========== DELTA MUSIC PLAYER V4 MOBILE ==========
-- Data: 20/08/2026 | Parcerias: Meta IA, Google Gemini, Ian
do
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local UserInputService = game:GetService("UserInputService")
local player = Players.LocalPlayer
if not player then return end
local playlist, currentIndex = {}, 1
Markdown 0 hrs 2 mins ██████████████████▊░░ 89.8%
HTML 0 hrs 0 mins ██▏░░░░░░░░░░░░░░░░░░ 10.2%
@MarkBaggett
MarkBaggett / agent-basics.ipynb
Last active August 20, 2026 15:14
Writing a basic AI agent
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@a-kbv
a-kbv / KMS.md
Last active August 20, 2026 15:13
Windows KMS Activate Guide

Install a product key

To install a client product key, open an administrative command prompt on the client, and run the following command and then press Enter:

slmgr /ipk <product key>

Set KMS machine address.

@Kartones
Kartones / postgres-cheatsheet.md
Last active August 20, 2026 15:12
PostgreSQL command line cheatsheet

PSQL Cheatsheet

Magic words:

psql -U postgres

Some interesting flags (to see all, use -h or --help depending on your psql version):

  • -E: will describe the underlaying queries of the \ commands (cool for learning!)
  • -l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)